Mapper
    open class MapperKeyValuesRepo<FromKey, FromValue, ToKey, ToValue>(to: KeyValuesRepo<ToKey, ToValue>, mapper: MapperRepo<FromKey, FromValue, ToKey, ToValue>) : KeyValuesRepo<FromKey, FromValue> , MapperRepo<FromKey, FromValue, ToKey, ToValue> , ReadKeyValuesRepo<FromKey, FromValue> , WriteKeyValuesRepo<FromKey, FromValue> 
Content copied to clipboard
Constructors
Link copied to clipboard
                fun <FromKey, FromValue, ToKey, ToValue> MapperKeyValuesRepo(to: KeyValuesRepo<ToKey, ToValue>, mapper: MapperRepo<FromKey, FromValue, ToKey, ToValue>)
Content copied to clipboard
Functions
Link copied to clipboard
                Link copied to clipboard
                open suspend override fun get(    k: FromKey,     pagination: Pagination,     reversed: Boolean): PaginationResult<FromValue>
Content copied to clipboard
Link copied to clipboard
                Link copied to clipboard
                open suspend override fun keys(pagination: Pagination, reversed: Boolean): PaginationResult<FromKey>
Content copied to clipboard
open suspend override fun keys(    v: FromValue,     pagination: Pagination,     reversed: Boolean): PaginationResult<FromKey>
Content copied to clipboard
Link copied to clipboard
                Link copied to clipboard
                Link copied to clipboard
                Properties
Link copied to clipboard
                open override val valueMapper: SimpleSuspendableMapper<FromValue, ToValue>
Content copied to clipboard